import * as React from "react"; import { type SearchParams } from "@/types/table"; import { getValidFilters } from "@/lib/data-table"; import { Shell } from "@/components/shell"; import { Skeleton } from "@/components/ui/skeleton"; import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"; import { SearchParamsCache } from "@/lib/incoterms/validations"; import { getIncoterms } from "@/lib/incoterms/service"; import { IncotermsTable } from "@/lib/incoterms/table/incoterms-table"; import { InformationButton } from "@/components/information/information-button"; interface IndexPageProps { searchParams: Promise; } export default async function IndexPage(props: IndexPageProps) { const searchParams = await props.searchParams; const search = SearchParamsCache.parse(searchParams); const validFilters = getValidFilters(search.filters); const promises = Promise.all([ getIncoterms({ ...search, filters: validFilters, }), ]); return (

인코텀즈 관리

{/*

인코텀즈(Incoterms)를 등록, 수정, 삭제할 수 있습니다.

*/}
}> } >
); }